home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / f2c_src.zip / F2C / LIBF77 / R_CNJG.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  92 b   |  9 lines

  1. #include "f2c.h"
  2.  
  3. VOID r_cnjg(r, z)
  4. complex *r, *z;
  5. {
  6. r->r = z->r;
  7. r->i = - z->i;
  8. }
  9.